home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / field-focus.izs < prev    next >
Text File  |  2005-09-28  |  3KB  |  108 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Field Focus
  4. <!/TITLE>
  5.  
  6. <!DESCRIPTION>A simple and small script to place focus on any form element you want when a page loads. <!/DESCRIPTION> 
  7.  
  8. <!CATEGORY>Forms<!/CATEGORY>
  9.  
  10. <!SCRIPT>
  11. <!-- START OF SCRIPT -->
  12.  
  13.  
  14. <!-- HOW TO INSTALL FIELD FOCUS:
  15.  
  16.   1.  Copy code into the HEAD section of document
  17.   2.  Add the onLoad event handler into the BODY tag
  18.   3.  Put last coding into the BODY section of document  -->
  19.  
  20. <!-- STEP ONE: Add code into HEAD section of document  -->
  21.  
  22. <HEAD>
  23.  
  24. <SCRIPT LANGUAGE="JavaScript">
  25.  
  26.  
  27. <!-- John Munn  (jrmunn@home.com) -->
  28.  
  29. <!-- Begin
  30.  function putFocus(formInst, elementInst) {
  31.   if (document.forms.length > 0) {
  32.    document.forms[formInst].elements[elementInst].focus();
  33.   }
  34.  }
  35. // The second number in the "onLoad" command in the body
  36. // tag determines the form's focus. Counting starts with '0'
  37. //  End -->
  38. </script>
  39.  
  40. </HEAD>
  41.  
  42. <!-- STEP TWO: Insert the onLoad event handler into your BODY tag  -->
  43.  
  44. <BODY onLoad="putFocus(0,1);">
  45.  
  46. <!-- STEP THREE: Copy code into BODY section of document  -->
  47.  
  48. <div align="center">
  49. <form method="post" name="bogus" id="bogus-form">
  50. <input type="text" name="bogus_field0" id="bogus_field0" size="20" maxlength="12"><br>
  51. <input type="text" name="bogus_field1" id="bogus_field0" size="20" maxlength="12" value="Form focus is here!"><br>
  52. <input type="text" name="bogus_field2" id="bogus_field0" size="20" maxlength="12">
  53. </div>
  54.  
  55.  
  56. <!-- END OF SCRIPT -->
  57. <!/SCRIPT>
  58.  
  59. <!PREVIEW>
  60. <!-- START OF SCRIPT -->
  61.  
  62.  
  63. <!-- HOW TO INSTALL FIELD FOCUS:
  64.  
  65.   1.  Copy code into the HEAD section of document
  66.   2.  Add the onLoad event handler into the BODY tag
  67.   3.  Put last coding into the BODY section of document  -->
  68.  
  69. <!-- STEP ONE: Add code into HEAD section of document  -->
  70.  
  71. <HEAD>
  72.  
  73. <SCRIPT LANGUAGE="JavaScript">
  74.  
  75.  
  76. <!-- John Munn  (jrmunn@home.com) -->
  77.  
  78. <!-- Begin
  79.  function putFocus(formInst, elementInst) {
  80.   if (document.forms.length > 0) {
  81.    document.forms[formInst].elements[elementInst].focus();
  82.   }
  83.  }
  84. // The second number in the "onLoad" command in the body
  85. // tag determines the form's focus. Counting starts with '0'
  86. //  End -->
  87. </script>
  88.  
  89. </HEAD>
  90.  
  91. <!-- STEP TWO: Insert the onLoad event handler into your BODY tag  -->
  92.  
  93. <BODY onLoad="putFocus(0,1);">
  94.  
  95. <!-- STEP THREE: Copy code into BODY section of document  -->
  96.  
  97. <div align="center">
  98. <form method="post" name="bogus" id="bogus-form">
  99. <input type="text" name="bogus_field0" id="bogus_field0" size="20" maxlength="12"><br>
  100. <input type="text" name="bogus_field1" id="bogus_field0" size="20" maxlength="12" value="Form focus is here!"><br>
  101. <input type="text" name="bogus_field2" id="bogus_field0" size="20" maxlength="12">
  102. </div>
  103.  
  104. <!-- END OF SCRIPT -->
  105. <!/PREVIEW>
  106.  
  107. <!RELATED>NONE<!/RELATED>
  108.